home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Developer / StopWatch / Source / ColCellData.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-04  |  405 b   |  20 lines

  1. /*
  2.  * Protocol to allow an object to be used in a ColCell, and
  3.  * a description of the structure returned by this method.
  4.  *
  5.  * For legal stuff see the file COPYRIGHT
  6.  */
  7. #include <objc/Object.h>
  8.  
  9. typedef struct {
  10.   int    offset;            /* column position */
  11.   char    *method;        /* method name to invoke */
  12.   SEL    selector;        /* filled in at run time */
  13. } ColDesc;
  14.  
  15. @protocol ColCellData
  16.  
  17. - (ColDesc *)colDesc;
  18.  
  19. @end
  20.